home *** CD-ROM | disk | FTP | other *** search
- /***********************************************
-
- DSPSTR.ASM defs
-
- ************************************************/
-
- void wrtstr(char *str,int page,int x,int y,
- int chrcol,int bakcol,int fsiz);
- void putstr(char *str,int page,int x,int y);
- void ctblset(int chrcol,int bakcol);
-
- extern char kantbl[256];
-
- #ifdef iskanji
- #undef iskanji
- #endif
-
- #ifdef iskanji2
- #undef iskanji2
- #endif
-
- #define ISKAN1 1
- #define ISKAN2 2
-
- #define iskanji(c) (kantbl[(unsigned char)c]&ISKAN1)
- #define iskanji2(c) (kantbl[(unsigned char)c]&ISKAN2)
-
- #define PAGE0 0x00000
- #define PAGE1 0x40000
-